home *** CD-ROM | disk | FTP | other *** search
/ PC Answers 1995 December / PC Answers December 1995 (disc errors).iso / mxc / main1.dir / 00134.ls < prev    next >
Encoding:
Text File  |  1995-05-04  |  648 b   |  29 lines

  1. on mouseDown
  2.   global gSlot, gCaller
  3.   if the optionDown = 1 then
  4.     set gSlot to the clickOn - 1
  5.     BrowseMe()
  6.   else
  7.     set gSlot to the clickOn - 1
  8.     set lApp to field (gSlot + 140)
  9.     if lApp = "@" then
  10.       BrowseMe()
  11.     else
  12.       writeOnlineFile()
  13.       if the machineType = 256 then
  14.         set gCaller to the pathName & "online\Between.exe"
  15.       else
  16.         set gCaller to the pathName & "online:Between"
  17.         put gCaller
  18.       end if
  19.       repeat with x = 2 to 7
  20.         puppetSprite(x, 0)
  21.       end repeat
  22.       repeat with y = 10 to 16
  23.         puppetSprite(y, 0)
  24.       end repeat
  25.       go("EXIT-B")
  26.     end if
  27.   end if
  28. end
  29.